home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1157 / source / sc.dpr < prev    next >
Text File  |  1996-11-07  |  276b  |  16 lines

  1. program Sc;
  2.  
  3. uses
  4.   Forms,
  5.   Scmain in 'SCMAIN.PAS' {Form1},
  6.   Scinfo in 'SCINFO.PAS' {InfoBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Kopierer';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TInfoBox, InfoBox);
  14.   Application.Run;
  15. end.
  16.